home *** CD-ROM | disk | FTP | other *** search
/ comtecelectrical.ca / www.comtecelectrical.ca.tar / www.comtecelectrical.ca / infobots / Backup / MSOCache / All Users / 90000409-6000-11D3-8CFE-0150048383C9 / YH561411.CAB / FL_adrotator_xsd________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2000-11-29  |  1KB  |  37 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <schema targetNamespace='Ad Rotator Schedule File'
  3.         xmlns='http://www.w3.org/1999/XMLSchema'
  4.         xmlns:adr='http://schemas.microsoft.com/Schemas/AdRotatorScheduleFile'
  5.         xmlns:vs='http://schemas.microsoft.com/Schemas/VisualStudio/HTML Intellisense'
  6.         vs:ishtmlschema='false'>
  7.  
  8. <annotation>
  9.     <documentation>
  10.     Ad Rotator Schedule File schema.
  11.     </documentation>
  12. </annotation>
  13.  
  14.  
  15. <!-- <Advertisements>: exactly one per file -->
  16. <element name='Advertisements' minOccurs='1' maxOccurs='1'>
  17.     <complexType>
  18.         <!-- <Ad>: at least one per file -->
  19.         <choice minOccurs='1' maxOccurs='*'>
  20.             <element name='Ad' type='adr:adType' />
  21.         </choice>
  22.     </complexType>
  23. </element>
  24.  
  25. <!-- an <Ad> must contain at least one element, but no element may appear more than once per <Ad> -->
  26. <complexType name='adType'>
  27.     <choice minOccurs='1' maxOccurs='*'>
  28.         <element name='ImageUrl' type='uriReference' vs:builder='url' minOccurs='0' maxOccurs='1' />
  29.         <element name='NavigateUrl' type='uriReference' vs:builder='url' minOccurs='0' maxOccurs='1' />
  30.         <element name='Keyword' type='string' minOccurs='0' maxOccurs='1' />
  31.         <element name='Impressions' type='positiveInteger' minOccurs='0' maxOccurs='1' />
  32.         <element name='AlternateText' type='string' minOccurs='0' maxOccurs='1' />
  33.     </choice>
  34. </complexType>
  35.  
  36. </schema>
  37.